home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / cursor.swg / 0021_Turn cursor off (ASM).pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-09-26  |  477 b   |  17 lines

  1. {****************************************************************************
  2.  * Procedure ..... CsrOff
  3.  * Purpose ....... To turn the cursor off
  4.  * Parameters .... None
  5.  * Returns ....... N/A
  6.  * Notes ......... None
  7.  * Author ........ Martin Richardson
  8.  * Date .......... May 13, 1992
  9.  ****************************************************************************}
  10. PROCEDURE CsrOff; ASSEMBLER;
  11. ASM
  12.        MOV  AH, 1
  13.        MOV  CX, 1400h
  14.        INT  10h
  15. END;
  16.  
  17.